home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -websites- / wirenet / files / thor25_arexx.lha / Examples / HitRate.br < prev    next >
Text File  |  1995-09-06  |  375b  |  23 lines

  1. /*  $VER: HitRate.br 3.1 (07.06.94)
  2.  *
  3.  *  Get hitrate for buffer system
  4.  */
  5.  
  6.     if ~show('p', 'BBSREAD') then do
  7.         address command
  8.             "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
  9.             "WaitForPort BBSREAD"
  10.     end
  11.  
  12.     options results
  13.     address BBSREAD
  14.  
  15.  
  16.     BUFHITRATE RATES
  17.  
  18.     say 'Global hitrate:' result
  19.     say 'Read hitrate:  ' RATES.READ
  20.     say 'Write hitrate: ' RATES.WRITE
  21.  
  22.     exit
  23.